github.com/go-pg/pg/v10/orm.Query.addUnion (method)

7 uses

	github.com/go-pg/pg/v10/orm (current package)
		query.go#L674: 	return q.addUnion(" UNION ", other)
		query.go#L678: 	return q.addUnion(" UNION ALL ", other)
		query.go#L682: 	return q.addUnion(" INTERSECT ", other)
		query.go#L686: 	return q.addUnion(" INTERSECT ALL ", other)
		query.go#L690: 	return q.addUnion(" EXCEPT ", other)
		query.go#L694: 	return q.addUnion(" EXCEPT ALL ", other)
		query.go#L697: func (q *Query) addUnion(expr string, other *Query) *Query {